home *** CD-ROM | disk | FTP | other *** search
/ Netware Super Library / Netware Super Library.iso / file_mgt / segment / readme.txt next >
Encoding:
Text File  |  1995-03-19  |  3.5 KB  |  93 lines

  1. Segment.exe - A simpler file segmenter and joiner (C) 1994, 95 
  2.  
  3. Version 1.3, 3/19/95
  4.  
  5. Change Log:
  6.  
  7.  Version         Reason                                                 Date
  8. -----------------------------------------------------------------------------   
  9.    1.0    initial release                                               11/94
  10.    1.1    cosmetic changes                                              12/94
  11.    1.2    addition of "NOREMOVE" parameter, recompile so XT can execute 02/95
  12.    1.3    performance increase, on screen update                        03/95
  13. -----------------------------------------------------------------------------
  14.  
  15. by, R. Scott Milligan, CSID: 76372,321
  16.  
  17. ------------------------------------------------------------------------------
  18.  
  19. Segment was developed to split large files into smaller ones for easy 
  20. transport on to floppy diskettes, and for ease of breaking up large files on 
  21. BBS systems for sysops (so that users can still download huge files, over
  22. several phone calls).
  23.  
  24. It will both segment and join files, based upon the designated size you 
  25. specify (in Kilobytes).  It will split files upto 4 terrabytes in 
  26. size (theorectically since I used unsigned long integers), without a problem.
  27.  
  28. To use segment:
  29.  
  30.         To segment a large file:
  31.  
  32.                 segment S (size) filename1.ext filename2.ext ... filenameN.ext
  33.                
  34.                 EG: 
  35.  
  36.                    segment S 100 file1.zip file2.zip file3.zip
  37.  
  38.                    This example will segment the files named "file1.zip",
  39.                    "file2.zip" and "file3.zip" into chunks on 100K.
  40.                    The filenames created will be "file1.0"..."file1.N", where
  41.                    N is the last segment.
  42.  
  43.                    The segmented copies added together will be the file size,
  44.                    with 3 additional bytes added to store the file's original
  45.                    extension.
  46.  
  47.                    Yes ! you can tell it to split multiple files at the same 
  48.                    time ! This is handy for breaking up files in an upload 
  49.                    directory.
  50.  
  51.         To Join segmented files:
  52.  
  53.                 segment J [NOREMOVE] file1 file2 ... fileN
  54.  
  55.                 EG:
  56.  
  57.                    segment J file1.zip file2.zip file3.zip
  58.  
  59.                    This example will put the files back together into their
  60.                    original format under the names "file1.zip", "file2.zip",
  61.                    and "file3.zip".
  62.  
  63.                    Yes ! you can tell it to join multiple files at the same 
  64.                    time ! This is handy for joining lots of files in a 
  65.                    download directory.
  66.  
  67.                    if NOREMOVE is specified, segment will NOT remove the 
  68.                    original segmented files after the join.
  69.                 
  70.                 EG:
  71.  
  72.                    segment J NOREMOVE file1.zip file2.zip file3.zip
  73.  
  74.                    NOREMOVE will tell segment not to delete the segmented
  75.                    files. (file.0, file.1, file.2, etc.)
  76.  
  77. If you find this utility useful, please send $10.00 in US funds to:
  78.  
  79. R. Scott Milligan
  80. 112 East 7th St
  81. Newport, Ky 41071
  82. Attn: Segment.exe
  83.  
  84. Upon recept, I will send you a registered copy, on either a 3.5" or a 
  85. 5.25" low density diskette.  Please specify which you one you want.
  86. Curious how it works ? enclose a check for $50.00 and I will include 
  87. the source (in Microsoft 'C').
  88.  
  89. Thanks !
  90.  
  91. Questions about segment ? I can be reached on compuserve @ 76372,321
  92.  
  93.